Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 158eaa98d0
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| // what: mt19937_64 quick usage snippet (time-seeded + rand range + shuffle). | ||
| // time: O(1) per draw; memory: O(1) | ||
| // constraint: uniform_int_distribution is inclusive [l, r]. |
There was a problem hiding this comment.
Keep a usable RNG helper in random.cpp
This file now contains only comments and no implementation, so including src/8-misc/random.cpp no longer defines the previously available rng helper. Any existing templates that relied on rng (as provided before this commit) will now fail to compile after updating, which is a breaking change for the library. If the intent is to keep a quick RNG utility, the module needs to still export a minimal wrapper or type alias instead of being comment-only.
Useful? React with 👍 / 👎.
No description provided.